home *** CD-ROM | disk | FTP | other *** search
/ Aminet 15 / Aminet 15 - Nov 1996.iso / Aminet / dev / gcc / ixemsdk.lha / man / cat3 / creat.0 < prev    next >
Text File  |  1996-09-02  |  1KB  |  32 lines

  1.  
  2. CREAT(3)                   UNIX Programmer's Manual                   CREAT(3)
  3.  
  4. NNAAMMEE
  5.      ccrreeaatt - create a new file
  6.  
  7. SSYYNNOOPPSSIISS
  8.      ##iinncclluuddee <<ssyyss//ttyyppeess..hh>>
  9.      ##iinncclluuddee <<ssyyss//ssttaatt..hh>>
  10.      ##iinncclluuddee <<ffccnnttll..hh>>
  11.  
  12.      _i_n_t
  13.      ccrreeaatt(_c_o_n_s_t _c_h_a_r _*_p_a_t_h, _m_o_d_e___t _m_o_d_e)
  14.  
  15. DDEESSCCRRIIPPTTIIOONN
  16.      TThhiiss iinntteerrffaaccee iiss mmaaddee oobbssoolleettee bbyy::  open(2).
  17.  
  18.      CCrreeaatt() is the same as:
  19.  
  20.            open(path, O_CREAT | O_TRUNC | O_WRONLY, mode);
  21.  
  22. SSEEEE AALLSSOO
  23.      open(2)
  24.  
  25. SSTTAANNDDAARRDDSS
  26.      The ccrreeaatt() function call conforms to .
  27.  
  28. HHIISSTTOORRYY
  29.      The ccrreeaatt() function call appeared in Version 6 AT&T UNIX.
  30.  
  31. 4th Berkeley Distribution        June 23, 1991                               1
  32.